home *** CD-ROM | disk | FTP | other *** search
/ Digital Underground 1 / Digital Underground 1.iso / main / gal2.dir / 00022.ls < prev    next >
Encoding:
Text File  |  1995-04-11  |  382 b   |  21 lines

  1. on mouseDown
  2.   set spnum to the clickOn
  3.   puppetSprite(spnum, 1)
  4.   set the castNum of sprite spnum to the number of cast "RIGHT_D"
  5.   updateStage()
  6.   repeat while the stillDown
  7.     updateStage()
  8.   end repeat
  9.   puppetSprite(spnum, 0)
  10. end
  11.  
  12. on mouseUp
  13.   global pno, chgflg
  14.   if chgflg = 0 then
  15.     if pno < 10 then
  16.       set pno to pno + 1
  17.       set chgflg to 1
  18.     end if
  19.   end if
  20. end
  21.